-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TT-9919] add docs for configuring cert-manager and webhooks #6054
base: master
Are you sure you want to change the base?
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
✅ PS. Pls add /docs/nightly to the end of url
To edit notification comments on pull requests, go to your Netlify site configuration. |
@olamilekan000 we should update Operator Installation notes too. |
##### Webhooks | ||
Webhooks can now be configured using the Helm chart by specifying the necessary settings in the values.yaml file of the operator. | ||
|
||
``` | ||
webhooks: | ||
enabled: true | ||
port: 9443 | ||
annotations: {} | ||
tls: | ||
useCertManager: true | ||
secretName: webhook-server-cert | ||
certificatesMountPath: "/tmp/k8s-webhook-server/serving-certs" | ||
``` | ||
- `enabled`: Enables or disables webhooks. | ||
- `port`: Specifies the port for webhook communication. | ||
- `annotations`: Allows adding custom annotations. | ||
- `tls.useCertManager`: If true, Cert-Manager will handle TLS certificates. | ||
- `tls.secretName`: The name of the Kubernetes Secret storing the TLS certificate. | ||
- `tls.certificatesMountPath`: Path where the webhook server mounts its certificates. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@caroltyk @olamilekan000 As per the Jira ticket, I think we need more description on webhooks and cert manager dependency.
- There will be changes in the installation section.
- Impact on previous version when upgrading.
c5a65f3
to
c30b0ad
Compare
User description
For internal users - Please add a Jira DX PR ticket to the subject!
Preview Link
Description
https://tyktech.atlassian.net/browse/TT-9919
Screenshots (if appropriate)
Checklist
master
.future-release
and specify the version (e.g.,future-release, 6.0
).4.1
,5.1
).5.5
) andmaster
.PR Type
Documentation
Description
Added Helm chart configuration docs for webhooks.
Detailed TLS settings using Cert-Manager.
Changes walkthrough 📝
operator.md
Add webhooks configuration documentation in Helm Operator
tyk-docs/content/api-management/automations/operator.md